home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / source.exe / POSIX / DEVSRV / FOR2BAK.C < prev    next >
C/C++ Source or Header  |  1993-06-24  |  266b  |  18 lines

  1. #include <stdio.h>
  2. /*
  3.  * For2bak:  Converts a string's fore slashes to back slashes.  MSS
  4.  */
  5.  
  6. void for2bak(char * str) 
  7. {
  8.     char *ptr;
  9.  
  10.     while (*str) {
  11.         if (ptr = strchr(str, ":"))
  12.             str = ptr+1;
  13.         if(*str == '/')
  14.             *str = '\\';
  15.         str++;
  16.     }            
  17. }
  18.